home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / fndation.arc / F.BAT < prev    next >
DOS Batch File  |  1985-11-21  |  783b  |  37 lines

  1. echo off
  2. cls
  3. c:
  4. cd\dos
  5. if ''=='%' goto help
  6. if 'l'=='%' goto low
  7. if 'h'=='%' goto high
  8. goto end
  9. HIGH
  10. echo You are about to format a 1.2 Megabyte 
  11. echo (HI-CAPACITY) floppy disk in drive a:
  12. echo This will wipe out all information (if any) that exists on
  13. echo the disk. Do you want to continue?
  14. query
  15. if not errorlevel 1 goto end
  16. cls
  17. format a:
  18. got end
  19. LOW
  20. echo You are about to format a 360k 
  21. echo (LOW-CAPACITY) floppy disk in drive a:
  22. echo This will wipe out all information (if any) that exists on
  23. echo the disk. Do you want to continue?
  24. query
  25. if not errorlevel 1 goto end
  26. cls
  27. format a:/4
  28. goto end
  29. help
  30. echo You forgot to specify which KIND of diskette to format:
  31. echo      EXAMPLES:   f h
  32. echo                  f l
  33. pause
  34. end
  35. cls
  36. type menu.txt
  37.